"ostree pull" intermittently fails with a bus error on at least some
mipsel CPUs, and applying gdb to the resulting core dump does not produce
any useful information. Debugging help would be appreciated. (Mitigates:
#827473)
+ostree (2016.6-3) UNRELEASED; urgency=medium
+
+ * Ignore build-time test failures on mipsel. "ostree pull"
+ intermittently fails with a bus error on at least some mipsel CPUs,
+ and applying gdb to the resulting core dump does not produce any
+ useful information. Debugging help would be appreciated.
+ (Mitigates: #827473)
+
+ -- Simon McVittie <smcv@debian.org> Mon, 04 Jul 2016 09:55:09 +0100
+
ostree (2016.6-2) unstable; urgency=medium
* d/p/tests-Improve-check-for-proc-cmdline-kargs.patch: add patch from
set -e
+ignore=
+
+case "$DEB_HOST_ARCH" in
+ (mipsel)
+ ignore=yes
+ ;;
+esac
+
export VERBOSE=1
try_tests=5
failed=0
make check || failed=1
-if [ "$failed" -gt 0 ]; then
- echo "Test failed! Checking how reproducible it is..."
+if [ "$failed" -gt 0 ] || [ -n "$ignore" ]; then
+ [ "$failed" -eq 0 ] || echo "Test failed! Checking how reproducible it is..."
for i in $(seq 1 "$(( $try_tests - 1 ))"); do
if ! make check; then
failed=$(( $failed + 1 ))
if [ "$failed" -gt 0 ]; then
echo "Failed $failed out of $try_tests test runs"
- exit 1
+ if [ -n "$ignore" ]; then
+ exit 1
+ else
+ echo "Ignoring test failure for this architecture"
+ fi
fi
exit 0